home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / program / dlibs12.arc / H.ARC / AR.H next >
C/C++ Source or Header  |  1988-09-11  |  425b  |  23 lines

  1. /*
  2.  * Archive header format
  3.  *
  4.  * Archives must start with a word containing the magic number
  5.  * 0xff65 or 0xff66, with 0xff66 being reserved for a random-
  6.  * access object module library.
  7.  */
  8.  
  9. #define    ARMAG1    0xff65
  10. #define    ARMAG2    0xff66
  11.  
  12. struct    ar_hdr {
  13.     char    ar_name[14];
  14.     long    ar_date;
  15.     char    ar_uid;
  16.     char    ar_gid;
  17.     int    ar_mode;
  18.     long    ar_size;
  19.     int    ar_fill;
  20. };
  21.  
  22. #define    ARHSZ    (sizeof (struct ar_hdr))
  23.